This is a suite of programs to record data from the TME Ethernet thermometer.  They need to be run as CGI scripts in a webserver, and have an SQLite database in the same directory containing at least the table given by:

CREATE TABLE temperatures (
timestamp default current_timestamp,
temperature real,
primary key(timestamp) );

The included files are:

README - this file	
commit_temperature.cgi - A CGI script called by the thermometer to record temperatures
monitor.cgi - A CGI script called by the end user which displays a graph and history of the temperature at the thermometer (requires PyChart)
page_template.py - A set of strings defining the appearance of the page returned by monitor.cgi, meant to be filled in with values using the % operator.

In monitor.cgi you will need to change the paths for temperature_database and scriptpath at the top of the file.  In commit_temperature.cgi, you just need to change temperature_database.